home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 27 / CU Amiga Magazine's Super CD-ROM 27 (1998)(EMAP Images)(GB)[!][issue 1998-10].iso / CUCD / Programming / JForth / Extras / SysGen / MAKEMODULES < prev    next >
Encoding:
Text File  |  1991-08-18  |  789 b   |  49 lines

  1. \ 00001 18-aug-91 mdh     Incorporated AREXXMOD
  2.  
  3. .need makeinc?
  4. variable makeinc?   variable makeass?     variable makedisass?
  5. variable makerexx?
  6. .then
  7.  
  8. \ cr ." Rebuild the INCLUDES binary module " y/n
  9.     true makeinc? !
  10.  
  11. \ cr ." Rebuild the ASSEM binary module " y/n
  12.     true makeass? !
  13.  
  14. \ cr ." Rebuild the DISASSEM binary module " y/n
  15.     true makedisass? !
  16.  
  17. \ cr ." Rebuild the AREXXMOD binary module " y/n  \ 00001
  18.     true makerexx? !  \ 00001
  19.  
  20. cr
  21.  
  22.  
  23. include? module jf:module
  24.  
  25.  
  26. .NEED INCLUDES
  27.       module includes
  28. .THEN
  29.  
  30.  
  31. .NEED ASSEM
  32.       module assem
  33. .THEN
  34.  
  35.  
  36. .NEED DISASSEM
  37.       module disassem
  38. .THEN
  39.  
  40. .NEED AREXXMOD            \ 00001
  41.       module arexxmod    \ 00001
  42. .THEN                    \ 00001
  43.  
  44. include jf:MakeINCLUDES
  45. include jf:MakeASSEM
  46. include jf:MakeDISASSEM
  47. include jf:MakeAREXXMOD    \ 00001
  48.  
  49.